diff options
| author | real-zephex <[email protected]> | 2024-04-12 08:48:35 +0530 |
|---|---|---|
| committer | real-zephex <[email protected]> | 2024-04-12 08:48:35 +0530 |
| commit | aa6ee5cf96542132c4fea66a4bfc111621f4f049 (patch) | |
| tree | 2e2f0bf00eaf2822a5c77c1176d252b0e4d0835b /src/app/manga/[title]/[id] | |
| parent | added sharp npm package (diff) | |
| download | dramalama-aa6ee5cf96542132c4fea66a4bfc111621f4f049.tar.xz dramalama-aa6ee5cf96542132c4fea66a4bfc111621f4f049.zip | |
fixes: manga search is now fixed. removed the netlify card from the homepage because the vercel one is stable enough.
Diffstat (limited to 'src/app/manga/[title]/[id]')
| -rw-r--r-- | src/app/manga/[title]/[id]/page.jsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/manga/[title]/[id]/page.jsx b/src/app/manga/[title]/[id]/page.jsx index f51a712..6ab436e 100644 --- a/src/app/manga/[title]/[id]/page.jsx +++ b/src/app/manga/[title]/[id]/page.jsx @@ -37,7 +37,7 @@ export default async function MangaInfo({ params }) { padding: 5, }} > - {data.title["romaji"]} + {data.title["english"] || data.title["romaji"]} </p> <Image src={`https://sup-proxy.zephex0-f6c.workers.dev/api-content?url=${data.image}`} |